 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #fff5f7 0%, #ffffff 50%, #ffe0e6 100%);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.7;
            color: #333;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 245, 0.95));
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 20px rgba(255, 107, 157, 0.1);
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logoz {
            width: 150px;
            height: auto;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #ff6b9d;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .back-btn {
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9em;
        }

        .back-btn:hover {
            transform: translateX(-5px);
            box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
        }

        /* Article Header */
        .article-header {
            margin-top: 100px;
            padding: 60px 20px 40px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            position: relative;
        }

        .article-hero-image {
            width: 100%;
            height: 400px;
            border-radius: 30px;
            object-fit: cover;
            margin-bottom: 40px;
            box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15);
            animation: fadeInScale 1s ease;
        }

        .article-category {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            margin-bottom: 20px;
            animation: slideInUp 0.8s ease 0.2s both;
        }

        .article-title {
            font-size: 3em;
            background: linear-gradient(135deg, #ff6b9d, #ff4d7d, #ff8fab);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            color: #666;
            font-size: 0.95em;
            animation: fadeInUp 1s ease 0.4s both;
            flex-wrap: wrap;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .article-subtitle {
            font-size: 1.3em;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.5s both;
        }

        /* Article Content */
        .article-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            animation: fadeIn 1s ease 0.6s both;
        }

        .content-section {
            margin-bottom: 50px;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 157, 0.1);
        }

        .section-title {
            font-size: 2em;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            border-radius: 2px;
        }

        .content-section p {
            margin-bottom: 20px;
            font-size: 1.1em;
            line-height: 1.8;
        }

        .trend-item {
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(255, 139, 171, 0.05));
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid #ff6b9d;
            transition: all 0.3s ease;
        }

        .trend-item:hover {
            transform: translateX(5px);
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.08), rgba(255, 139, 171, 0.08));
        }

        .trend-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .trend-title {
            font-size: 1.4em;
            color: #333;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .trend-description {
            color: #666;
            line-height: 1.7;
        }

        .quote-box {
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
            position: relative;
            font-style: italic;
            font-size: 1.2em;
            text-align: center;
        }

        .quote-box::before {
            content: '"';
            font-size: 4em;
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.3;
        }

        .quote-author {
            margin-top: 15px;
            font-size: 0.9em;
            opacity: 0.9;
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .gallery-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .gallery-image:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.2);
        }

        .tips-list {
            background: rgba(255, 107, 157, 0.05);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
        }

        .tips-list h4 {
            color: #ff6b9d;
            margin-bottom: 15px;
            font-size: 1.2em;
        }

        .tips-list ul {
            list-style: none;
        }

        .tips-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
        }

        .tips-list li::before {
            content: '✨';
            position: absolute;
            left: 0;
            top: 8px;
        }

        /* Author Section */
        .author-section {
            max-width: 800px;
            margin: 60px auto;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 30px;
            align-items: center;
            animation: fadeInUp 1s ease;
        }

        .author-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            flex-shrink: 0;
        }

        .author-info h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.3em;
        }

        .author-info p {
            color: #666;
            line-height: 1.6;
        }

        /* Related Posts */
        .related-posts {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .related-title {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 50px;
            color: #333;
            position: relative;
        }

        .related-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            border-radius: 2px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .related-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
        }

        .related-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .related-content {
            padding: 25px;
        }

        .related-category {
            color: #ff6b9d;
            font-size: 0.9em;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .related-card-title {
            font-size: 1.2em;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .related-excerpt {
            color: #666;
            font-size: 0.95em;
            line-height: 1.6;
        }

        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            padding: 80px 20px;
            margin: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -150px;
            right: -150px;
            animation: float 10s infinite ease-in-out;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .newsletter h3 {
            color: white;
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .newsletter p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 450px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px;
            font-size: 1em;
            outline: none;
            transition: box-shadow 0.3s ease;
        }

        .newsletter-form input:focus {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .newsletter-form button {
            padding: 15px 35px;
            background: white;
            color: #ff6b9d;
            border: none;
            border-radius: 30px;
            font-size: 1em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Social Share */
        .social-share {
            position: fixed;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 50;
        }

        .share-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2em;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .share-facebook {
            background: #3b5998;
        }

        .share-twitter {
            background: #1da1f2;
        }

        .share-pinterest {
            background: #bd081c;
        }

        .share-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        /* Floating elements */
        .float-element {
            position: fixed;
            pointer-events: none;
            opacity: 0.05;
            z-index: -1;
        }

        .float-element:nth-child(1) {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            border-radius: 50%;
            top: 20%;
            right: 10%;
            animation: float 15s infinite ease-in-out;
        }

        .float-element:nth-child(2) {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #ffb6c1, #ffc0cb);
            border-radius: 50%;
            bottom: 20%;
            left: 10%;
            animation: float 20s infinite ease-in-out reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-20px) rotate(90deg);
            }

            50% {
                transform: translateY(0) rotate(180deg);
            }

            75% {
                transform: translateY(20px) rotate(270deg);
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(135deg, #ff6b9d, #ff8fab);
            z-index: 101;
            transition: width 0.1s ease;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .social-share {
                position: static;
                transform: none;
                flex-direction: row;
                justify-content: center;
                margin: 40px 0;
            }

            .author-section {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .article-title {
                font-size: 2.2em;
            }

            .nav-links {
                display: none;
            }

            .article-meta {
                flex-direction: column;
                gap: 15px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .content-section {
                padding: 25px;
            }

            .article-hero-image {
                height: 250px;
            }
        }